﻿
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --navbar-bg: #064d91;
    --link-color: #fcd34d;
    --header-bg: #064d91;
    --dropdown-bg: #ffffff;
    --dropdown-hover-bg: #e6f4f6;
    --dropdown-hover-color: #005566;
}

body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --navbar-bg: #004d66;
    --header-bg: #2c2c2c;
    --dropdown-bg: #333333;
    --dropdown-hover-bg: #4a4a4a;
    --dropdown-hover-color: #fcd34d;
}


body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}


.header {
    width: 100%;
    height: 40px;
    margin: 0 auto;
    background-color: var(--header-bg);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.head2 {
    display: flex;
    align-items: center;
    gap: 15px;
}



.header-link, .language-toggle {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .header-link:hover, .language-toggle:hover {
        color: var(--link-color);
    }

.social-icons a {
    margin: 0 8px;
    font-size: 1.2rem;
}

.header-link {
    font-size: 16px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .theme-toggle input {
        display: none;
    }

.toggle-icon {
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.theme-toggle input:checked + .toggle-icon .fa-sun-o {
    display: none;
}

.theme-toggle input:not(:checked) + .toggle-icon .fa-moon-o {
    display: none;
}

.theme-toggle .fa-moon-o, .theme-toggle .fa-sun-o {
    color: var(--link-color);
}


.navbar {
    width: 90%;
    height: 60px;
    margin: 10px auto;
    background-color: var(--navbar-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
}


.dark-mode .navbar {
    background-color: black;
}

.container-fluid {
    padding: 0 20px;
}


.navbar-brand {
    font-size: 16px;
    font-weight: 500;
    color: var(--link-color) !important;
    transition: color 0.3s ease;
    margin-top:-10px;
}


    .navbar-brand:hover {
        color: #003d4d;
    }

    .navbar-brand img {
        width: 80%;
        height: 100%;
        display: none;
    }


.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(252, 211, 77, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.nav-link {
    color: var(--link-color) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 15px;
    margin-left: 20px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

    .nav-link:hover {
        color: var(--link-color) !important;
        background-color: rgba(255, 255, 255, 0.1);
    }


.dropdown-menu {
    background-color: var(--dropdown-bg);
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
}

.dropdown-item {
    color: var(--text-color);
    font-size: 1rem;
    padding: 8px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover {
    background-color: var(--dropdown-hover-bg);
    color: var(--dropdown-hover-color);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.form-control {
    border-radius: 20px;
    border: 1px solid #d1e7ea;
    padding: 8px 15px;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

    .form-control:focus {
        border-color: #005566;
        box-shadow: 0 0 5px rgba(0, 85, 102, 0.3);
        outline: none;
    }


@media (max-width: 991.98px) {
    .navbar-nav {
        background-color: var(--navbar-bg);
        padding: 10px;
        border-radius: 6px;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        color: var(--link-color) !important;
    }

        .nav-link:hover {
            color: var(--link-color) !important;
            background-color: rgba(255, 255, 255, 0.1);
        }

    .form-control {
        margin: 10px 0;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .head2 {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        width: 95%;
        padding: 10px 15px;
        height: auto;
        background-color: white;
    }

    .navbar-brand img {
        width: 80%;
        height: 80%;
        display: block;
    }

    .dropdown-menu {
        display: none;
    }

    .navbar-brand span{
        display:none;
    }

    .navbar-toggler {
        margin-left: 280px;
        margin-top: -50px;
    }

    .container-fluid {
        padding: 0 10px;
    }

    .header {
        width: 100%;
        height: auto;
        display: flex;
        height: 60px;
    }

    .head2 {
        width: 40%;
        margin-top: -2px;
    }

    .hide {
        display: none;
    }

    .head3 {
        margin-left: 180px;
        margin-top: -35px;
    }
}




.apponts2 img {
    width: 80%;
    height: 80%;
    margin-left: 60px;
}

.appoints {
    width: 100%;
    height: 70px;
    background-color: lightyellow;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.apponts2 {
    width: 33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

    .apponts2 .btn.btn-info {
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 0.7rem;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 8px;
        background-color: #17a2b8;
        border: 2px solid #17a2b8;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

        .apponts2 .btn.btn-info:hover {
            background-color: #218838;
            border-color: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .apponts2 .btn.btn-info:active {
            transform: translateY(0);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

.dark-mode .appoints {
    background-color: #3c3c1c;
}

.dark-mode .apponts2 .btn.btn-info {
    background-color: black;
    border-color: #34c759;
    color: #fff;
}

    .dark-mode .apponts2 .btn.btn-info:hover {
        background-color: #2ea44f;
        border-color: #2ea44f;
    }



@media (max-width: 576px) {
    .appoints {
        height: auto;
        padding: 0 10px;
        width: 100%;
    }

    .apponts2 {
        width: 100%;
        
    }

        .apponts2 img {
            width: 100%;
            height: 40px;
        }

    .logoes2 {
        display: none;
    }

    .apponts2 .btn.btn-info {
        font-size: 0.7rem;
        padding: 05px 05px;
        border-radius: 6px;
        margin-left:20px;
       
    }
}


ul {
    margin: 0px;
    padding: 0px;
}


.footer-section {
    background: #007c9d; 
    position: relative;
    transition: all 0.3s ease;
}

.footer-cta {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.single-cta i {
    color: #fff;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.footer-text p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
}

.footer-widget-heading h3 {
    color: #fff;
}

.footer-widget ul li a {
    color: rgba(255,255,255,0.8);
}

    .footer-widget ul li a:hover {
        color: #fff;
    }

.subscribe-form input {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.subscribe-form button {
    background: #fff;
    color: #007c9d;
}

.copyright-area {
    background: #006a8a; 
}


.dark-mode .footer-section {
    background: #000; 
}

.dark-mode .footer-cta {
    border-bottom: 1px solid #333;
}

.dark-mode .copyright-area {
    background: #111; 
}

.footer-content {
    position: relative;
    z-index: 2;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

    .footer-logo img {
        max-width: 200px;
        border-radius: 16px;
    }

.footer-social-icon {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

    .footer-social-icon a {
        color: #fff;
        font-size: 16px;
        margin-right: 15px;
    }

    .footer-social-icon i {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 38px;
        border-radius: 50%;
    }

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: #fff;
    }

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

    .subscribe-form button i {
        font-size: 22px;
        transform: rotate(-6deg);
    }

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

    .copyright-text p a {
        color: #fff;
    }

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

    .footer-menu li a {
        font-size: 14px;
        color: rgba(255,255,255,0.8);
    }

.footer-text img {
    height:150px;
    border-radius:20%;
}


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
    }

    .whatsapp-btn img {
        width: 30px;
        height: 30px;
    }


.call-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

    .call-btn:hover {
        transform: scale(1.1);
    }

    .call-btn i {
        font-size: 30px; /* Adjust size to match the original 30x30px */
        line-height: 25px;
    }